Merge pull request #10429 from iNavFlight/mmosca-patch-4
[inav.git] / docs / development / How to test a pull request.md
blob4da0c27e732649b3f0f44f1365a045b967a19323
1 # Introduction
2 While many of the instructions here are somewhat generic and will likely work for other projects, the goal of these instructions is to assist a non-developer INAV user to acquire firmware that includes a pull request so he can flash it on his supported fc.
3 Building the pull request manually or using custom/unofficial targets is not the focus of this document.
5 # Why should you test a pull request?
6 - You want to volunteer time and resources helping improving INAV for everyone by catching issues before they are introduced in the next release of INAV!
7 - You reported or are affected by a bug that has been addressed by this pull request and want to help test the fix
8 - You are interested in testing a new feature implemented by this pull request
10 # Why should you not test a pull request?
11 - Pull requests are beta code and may have bugs; bugs may cause you to crash and damage your model
12 - Upgrading from the stable version of INAV may require changes to your config that are not yet fully documented
14 # Before you proceed
15 - Read the comments on the pull request you want to test. It may provide useful context and information on known issues, required configuration changes or what branch of the inav-configurator is required.
16 - Make sure the pull request has passed all checks, otherwise you may not have pre-compiled firmware images.
17 - Make a diff all backup of your existing INAV configuration.
18 - Take notes of what INAV target you are using.
19 - You will need a recent version of INAV Configurator from master, or even a specific branch. If you don't need a specific branch, [inav-configurator-next](https://seyrsnys-inav-cfg-next.surge.sh/) usually has recent unofficial pre-built versions of INAV Configurator. If your pull requests refers to an inav-configruator pull request, you are likely to need a specific branch of the configurator. In that case you can try to build it from source by following the build [``Instructions``](https://github.com/iNavFlight/inav-configurator#building-and-running-inav-configurator-locally-for-development) or follow instructions on how to do any needed configuration changes using the CLI.
21 # Finding the pull request
22 This is easy, but you will need to be logged in to your GitHub account.
24 Navigate to the INAV github project and click on [``Pull Requests``](https://github.com/iNavFlight/inav/pulls).
26 You can just scroll through the list to find a pull request you are interested in, or use the filter bar by typing the name of the pull request, or the number, if you know it.
28 ![Search results](assets/pr_testing/pr_search_result.png)
30 Once you find the one you are looking for, go ahead an open it!
32 Click on the ``Checks`` tab
34 Click on the down arrow next to the number of artifacts
35 ![Artifact list](assets/pr_testing/artifacts_download.png)
37 You should see a list of files. The one without SITL in the name, the biggest one, will be a zip file with all official target .hex files. Click on it to download it to your computer.
38 Extract all files and select the firmware for your target using the configurator by clicking on ``Load Firmware [Local]`` button. Don't forget to use the ``Full chip erase`` option, as there are no guarantees the firmware will be compatible with your existing settings.
40 # I have flashed the new firmware, what should I do next?
42 - You should configure your model, either manually from scratch, or by loading your diff file. Keep in mind that loading a diff file may not always work, as there may have been some other changes in INAV that require attention. But even if you start from scratch, there are usually many sections that are safe to copy over from your diff.
43 - Try to reproduce the bug reported or play around with the new feature. 
44 - Once you are done testing, don't forget to report your results on the pull request. Both positive results and issues are valid and welcome feedback.